listbox: Avoid using show_all on rows
authorKalev Lember <klember@redhat.com>
Sat, 8 Aug 2015 14:33:42 +0000 (16:33 +0200)
committerKalev Lember <klember@redhat.com>
Sat, 8 Aug 2015 14:54:31 +0000 (16:54 +0200)
commitd6f51ef7b299f0bdc7522ced74482c510dc947b4
tree429383496fcee367a0327a839fb4a9b1b3d19ebc
parent1f4f8833b1d8a1bd17fd86f93f024c524d6284ac
listbox: Avoid using show_all on rows

Don't use gtk_widget_show_all() on row widgets because that would
unconditionally show all of its children. This might be unwanted in case
the row implementation wants to keep some of its children hidden.

This commit changes it to use show() instead of show_all() and relies on
the row widget to control the visibility of its children itself as
appropriate.

https://bugzilla.gnome.org/show_bug.cgi?id=753392
gtk/gtklistbox.c